Monday, November 28, 2005

2 projects and 2nd one is nunit task

I setup another project in my CCNET and the biggest problem I had was after adding a new project section to my ccnnet.config file I didn't restart the service to read it properly. Once that was done I was ready to go.
Here is is


<project>
<name>BrandedSite_Testing</name>
<webURL>http://localhost/ccnet-dashboard/?_action_ViewProjectReport=true&server=local&project=BrandedSite_Testing</webURL>
<triggers>
<intervalTrigger buildCondition="ForceBuild"/>
</triggers>

<labeller type="defaultlabeller">
<!-- this prefix should be changed to be the current year -->
<prefix>2005-</prefix>
<incrementOnFailure>true</incrementOnFailure>
</labeller>
<tasks>
<nunit>
<path>C:\Program Files\NUnit 2.2\bin\nunit-console.exe</path>
<assemblies>
<assembly>C:\MyProject\Testing\bin\Debug\Testing.dll</assembly>
</assemblies>
</nunit>
</tasks>

<publishers>
<xmllogger />

<email from="buildmaster@somewhere.com" mailhost="elsmail" includeDetails="TRUE">
<users>
<user name="J.R." group="admin" address="me@somewhere.com"/>
</users>
<groups>
<group name="developers" notification="change"/>
<group name="admin" notification="change"/>
</groups>
</email>

</publishers>

</project>

No comments: